home *** CD-ROM | disk | FTP | other *** search
- /* This program was written and contributed by
- * Gordie Freedman <gordie@cyclesoft.com>
- *
- * This is a good example of why TickleServices needs loadable Tcl
- * built-ins.
- */
-
- /* cc -o WSNotify -s -O WSNotify.m -lNeXT_s */
- /* cc -arch m68k -arch i386 -o WSNotify -s -O WSNotify.m -lNeXT_s */
-
- #import <appkit/Application.h>
-
- void main(int argc, char *argv[])
- {
- [Application new];
-
- [[Application workspace] defaultsChanged];
- [NXApp free];
-
- exit(0);
- }
-